home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 52
/
Amiga Format AFCD52 (Issue 136, May 2000).iso
/
-serious-
/
programming
/
other
/
littelcomp
/
r5
/
lc
/
examples
/
helloworld2.l
< prev
next >
Wrap
Text File
|
2000-02-28
|
337b
|
18 lines
; Hello World 2 in LITTEL 0.16 :)
#include "app:progg/asm/phxass/examples/include/lib/dos.i"
STRING _hello "hello world!\n"
PROC main
copy _hello d1 ; adr of string
copy 13 d2 ; lenght of string
call _DOSBase WriteChars ; print it
ENDPROC
END ;dont forget this one